-
Notifications
You must be signed in to change notification settings - Fork 0
Built rough structure using Solid-nextjs template. #2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Conversation
|
The dark mode selection does not automatically select dark mode based on my system settings, are you going to fix that in this PR or do you have another task somewhere tracking that? |
|
The entire codebases uses |
|
Make links look like links |
|
You're not consistent about using |
- Updated package dependencies to their latest versions in `package.json`. - Switched the `lint` script to use `eslint .` instead of `next lint`.
…t files - Renamed `ErroPage` to `ErrorPage` for consistency. - Updated an anchor tag in Footer to include a valid href (`#`). - Removed unused `ToasterContext` import from layout file.
…nd redundant menu code.
…lean up CSS for improved consistency and reduced complexity.
…y and improve readability
…update styling; minor content improvements in Hero component.
…valid links, and simplify markup.
…st imports in layout and Features for consistency.
… `public/images/icon`.
…-to-Skill conversion in `skillsData`
…ght`, and `skill` classes, and modify metadata for `USB Tree`.
…onent; minor styling updates in `Contact` and global CSS.
…next/next/no-img-element`.
…nd links in global CSS
…` properties; improve accessibility for social media icons and enhance `ThemeToggler` with resolved theme detection.
…s, header structure adjustments, and `aria-label` addition; update feature data with descriptive `alt` text.
…me `FunFact` component to `Download`; update package metadata.
lietu
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pretty good progress, a few notes.
| <a | ||
| rel="noopener" | ||
| target="_blank" | ||
| href="www.linkedin.com/in/alastair-ozmond-108512179" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| export default function ErrorPage() { | ||
| return ( | ||
| <section className="overflow-hidden pt-45 pb-25 lg:pt-50 lg:pb-32.5 xl:pt-55 xl:pb-37.5"> | ||
| <div className="mx-auto max-w-[518px] text-center"> | ||
| <img src="/images/shape/404.svg" alt="404" className="mx-auto mb-7.5" /> | ||
|
|
||
| <h2 className="mb-5 text-2xl font-semibold text-black md:text-4xl dark:text-white"> | ||
| This Page Does Not Exist | ||
| </h2> | ||
| <p className="mb-7.5"> | ||
| The page you were looking for appears to have been moved, deleted or | ||
| does not exist. | ||
| </p> | ||
|
|
||
| <Link | ||
| href="/" | ||
| className="hover:bg-blackho dark:bg-btndark dark:hover:bg-blackho inline-flex items-center gap-2.5 rounded-full bg-black px-6 py-3 font-medium text-white duration-300 ease-in-out" | ||
| > | ||
| Return to Home | ||
| </Link> | ||
| </div> | ||
| </section> | ||
| ); | ||
| } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| export default function Head() { | ||
| return ( | ||
| <> | ||
| <title> USB Tree - The USB device tree viewer and monitor.</title> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| <title> USB Tree - The USB device tree viewer and monitor.</title> | |
| <title>USB Tree - A cross-platform USB device tree viewer and monitor</title> |
| import Contact from "@/components/Contact"; | ||
|
|
||
| export const metadata: Metadata = { | ||
| title: "USB Tree - The USB device tree viewer and monitor.", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Same update as in head
| <div className="flex flex-col-reverse flex-wrap gap-8 md:flex-row md:flex-nowrap md:justify-between xl:gap-20"> | ||
| <div className="shadow-solid-8 dark:border-strokedark w-full rounded-lg bg-white p-7.5 md:w-3/5 lg:w-3/4 xl:p-15 dark:border dark:bg-black"> | ||
| <p className="text-body"> | ||
| I'm Alastair, Software Engineer from Glasgow,Scotland, Currently |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| I'm Alastair, Software Engineer from Glasgow,Scotland, Currently | |
| I'm Alastair, Software Engineer from Glasgow, Scotland, currently |
| <a | ||
| rel="noopener" | ||
| target="_blank" | ||
| href="https://github.com/AOzmond/usb-tree" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is not the releases page.
| <p>Windows Package Manager</p> | ||
| <div className="rounded-lg bg-black/90 p-4 text-white"> | ||
| <code className="block font-mono"> | ||
| winget install usb-tree-app | ||
| </code> | ||
| </div> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| <p>Windows Package Manager</p> | |
| <div className="rounded-lg bg-black/90 p-4 text-white"> | |
| <code className="block font-mono"> | |
| winget install usb-tree-app | |
| </code> | |
| </div> | |
| <!-- <p>Windows Package Manager</p> | |
| <div className="rounded-lg bg-black/90 p-4 text-white"> | |
| <code className="block font-mono"> | |
| winget install usb-tree-app | |
| </code> | |
| </div> --> |
While you don't yet have a winget package it's better not to claim that you do, but it's good that the placeholder has been tested.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can you make the background transparent?
|
|
||
| Project Website for usb-tree | ||
|
|
||
| [Built using the Solid-Next.js template.](https://nextjstemplates.com/templates/solid) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| [Built using the Solid-Next.js template.](https://nextjstemplates.com/templates/solid) | |
| Built using the [Solid-Next.js template](https://nextjstemplates.com/templates/solid). |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.









Rough structure of single page website, built using the Solid-nextjs template.